home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Demos / Simpsons Cartoon Studio™ Demo / Simpsons / Support / dlogdata / alert.Dxr / 00007_save button.ls < prev    next >
Encoding:
Text File  |  1996-08-16  |  588 b   |  23 lines

  1. on mouseDown
  2.   set mySpriteNum to the clickOn
  3.   set hilit to 1
  4.   set theCastNum to the castNum of sprite mySpriteNum
  5.   set the castNum of sprite mySpriteNum to theCastNum + 1
  6.   updateStage()
  7.   repeat while the mouseDown
  8.     if rollOver(mySpriteNum) then
  9.       set the castNum of sprite mySpriteNum to theCastNum + 1
  10.       set hilit to 1
  11.     else
  12.       set the castNum of sprite mySpriteNum to theCastNum
  13.       set hilit to 0
  14.     end if
  15.     updateStage()
  16.   end repeat
  17.   set the castNum of sprite mySpriteNum to theCastNum
  18.   updateStage()
  19.   if hilit then
  20.     doButtonScript(3)
  21.   end if
  22. end
  23.